home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / TRCKR.PAK / TRACKAPP.CPP < prev    next >
C/C++ Source or Header  |  1997-05-06  |  4KB  |  148 lines

  1. // tracker.cpp : Defines the class behaviors for the application.
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13.  
  14. #include "stdafx.h"
  15. #include "trackapp.h"
  16.  
  17. #include "mainfrm.h"
  18. #include "trackdoc.h"
  19. #include "trackvw.h"
  20.  
  21. #ifdef _DEBUG
  22. #undef THIS_FILE
  23. static char BASED_CODE THIS_FILE[] = __FILE__;
  24. #endif
  25.  
  26. /////////////////////////////////////////////////////////////////////////////
  27. // CTrackerApp
  28.  
  29. BEGIN_MESSAGE_MAP(CTrackerApp, CWinApp)
  30.     //{{AFX_MSG_MAP(CTrackerApp)
  31.     ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  32.         // NOTE - the ClassWizard will add and remove mapping macros here.
  33.         //    DO NOT EDIT what you see in these blocks of generated code !
  34.     //}}AFX_MSG_MAP
  35.     // Standard file based document commands
  36.     ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  37.     ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  38.     // Standard print setup command
  39.     ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  40. END_MESSAGE_MAP()
  41.  
  42. /////////////////////////////////////////////////////////////////////////////
  43. // CTrackerApp construction
  44.  
  45. CTrackerApp::CTrackerApp()
  46. {
  47.     // TODO: add construction code here,
  48.     // Place all significant initialization in InitInstance
  49. }
  50.  
  51. /////////////////////////////////////////////////////////////////////////////
  52. // The one and only CTrackerApp object
  53.  
  54. CTrackerApp NEAR theApp;
  55.  
  56. /////////////////////////////////////////////////////////////////////////////
  57. // CTrackerApp initialization
  58.  
  59. BOOL CTrackerApp::InitInstance()
  60. {
  61.     // Standard initialization
  62.     // If you are not using these features and wish to reduce the size
  63.     //  of your final executable, you should remove from the following
  64.     //  the specific initialization routines you do not need.
  65.  
  66.     Enable3dControls(); // enable 3d look for standard controls
  67.     LoadStdProfileSettings();  // Load standard INI options (including MRU)
  68.  
  69.     // Register the application's document templates.  Document templates
  70.     //  serve as the connection between documents, frame windows and views.
  71.  
  72.     AddDocTemplate(new CMultiDocTemplate(IDR_TRACKETYPE,
  73.             RUNTIME_CLASS(CTrackerDoc),
  74.             RUNTIME_CLASS(CMDIChildWnd),        // standard MDI child frame
  75.             RUNTIME_CLASS(CTrackerView)));
  76.  
  77.     // create main MDI Frame window
  78.     CMainFrame* pMainFrame = new CMainFrame;
  79.     if (!pMainFrame->LoadFrame(IDR_MAINFRAME))
  80.         return FALSE;
  81.     pMainFrame->ShowWindow(m_nCmdShow);
  82.     pMainFrame->UpdateWindow();
  83.     m_pMainWnd = pMainFrame;
  84.  
  85. #ifndef _MAC
  86.     // create a new (empty) document
  87.     OnFileNew();
  88.  
  89.     if (m_lpCmdLine[0] != '\0')
  90.     {
  91.         // TODO: add command line processing here
  92.     }
  93. #endif
  94.  
  95.     return TRUE;
  96. }
  97.  
  98. /////////////////////////////////////////////////////////////////////////////
  99. // CAboutDlg dialog used for App About
  100.  
  101. class CAboutDlg : public CDialog
  102. {
  103. public:
  104.     CAboutDlg();
  105.  
  106. // Dialog Data
  107.     //{{AFX_DATA(CAboutDlg)
  108.     enum { IDD = IDD_ABOUTBOX };
  109.     //}}AFX_DATA
  110.  
  111. // Implementation
  112. protected:
  113.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  114.     //{{AFX_MSG(CAboutDlg)
  115.         // No message handlers
  116.     //}}AFX_MSG
  117.     DECLARE_MESSAGE_MAP()
  118. };
  119.  
  120. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  121. {
  122.     //{{AFX_DATA_INIT(CAboutDlg)
  123.     //}}AFX_DATA_INIT
  124. }
  125.  
  126. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  127. {
  128.     CDialog::DoDataExchange(pDX);
  129.     //{{AFX_DATA_MAP(CAboutDlg)
  130.     //}}AFX_DATA_MAP
  131. }
  132.  
  133. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  134.     //{{AFX_MSG_MAP(CAboutDlg)
  135.         // No message handlers
  136.     //}}AFX_MSG_MAP
  137. END_MESSAGE_MAP()
  138.  
  139. // App command to run the dialog
  140. void CTrackerApp::OnAppAbout()
  141. {
  142.     CAboutDlg aboutDlg;
  143.     aboutDlg.DoModal();
  144. }
  145.  
  146. /////////////////////////////////////////////////////////////////////////////
  147. // CTrackerApp commands
  148.